home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / OS / FWMenu / Include / FWMenu.k < prev    next >
Encoding:
Text File  |  1995-11-08  |  857 b   |  36 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWMenu.k
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    © 1993, 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWMENU_K
  11. #define FWMENU_K
  12.  
  13. #if FW_LIB_EXPORT_PRAGMAS
  14. #pragma lib_export on
  15. #endif
  16.  
  17. //========================================================================================
  18. //    defines
  19. //========================================================================================
  20.  
  21. #define FW_kNoCommand                -1
  22. #define FW_kSeparatorCommand        0
  23.  
  24. #ifdef FW_BUILD_WIN
  25. #define FW_kFirstUserCommandID        1501
  26. #endif
  27.  
  28. #ifdef FW_BUILD_MAC
  29. #define FW_kFirstUserCommandID        20001
  30. #endif
  31.  
  32. #if FW_LIB_EXPORT_PRAGMAS
  33. #pragma lib_export off
  34. #endif
  35.  
  36. #endif